actually show the child.
authorKristian Rietveld <kris@gtk.org>
Tue, 30 Sep 2003 19:11:55 +0000 (19:11 +0000)
committerKristian Rietveld <kristian@src.gnome.org>
Tue, 30 Sep 2003 19:11:55 +0000 (19:11 +0000)
Tue Sep 30 21:08:43 2003  Kristian Rietveld  <kris@gtk.org>

* gtk/gtkcombobox.c (gtk_combo_box_init): actually show the child.

* gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): ditto. (#123543,
Marco Pesenti Gritti).

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkcombobox.c
gtk/gtkcomboboxentry.c

index 21476132a7e417bb56aa5f9145528298b533b1a8..65ed4284910fbca938e9cadf43ca8bf458612499 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Tue Sep 30 21:08:43 2003  Kristian Rietveld  <kris@gtk.org>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_init): actually show the child.
+
+       * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): ditto. (#123543,
+       Marco Pesenti Gritti).
+
 2003-09-30  Murray Cumming  <murrayc@usa.net>
  
        * gtk/gtkcellrenderer.h: The render vfunc takes a GdkDrawable*
index 21476132a7e417bb56aa5f9145528298b533b1a8..65ed4284910fbca938e9cadf43ca8bf458612499 100644 (file)
@@ -1,3 +1,10 @@
+Tue Sep 30 21:08:43 2003  Kristian Rietveld  <kris@gtk.org>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_init): actually show the child.
+
+       * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): ditto. (#123543,
+       Marco Pesenti Gritti).
+
 2003-09-30  Murray Cumming  <murrayc@usa.net>
  
        * gtk/gtkcellrenderer.h: The render vfunc takes a GdkDrawable*
index 21476132a7e417bb56aa5f9145528298b533b1a8..65ed4284910fbca938e9cadf43ca8bf458612499 100644 (file)
@@ -1,3 +1,10 @@
+Tue Sep 30 21:08:43 2003  Kristian Rietveld  <kris@gtk.org>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_init): actually show the child.
+
+       * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): ditto. (#123543,
+       Marco Pesenti Gritti).
+
 2003-09-30  Murray Cumming  <murrayc@usa.net>
  
        * gtk/gtkcellrenderer.h: The render vfunc takes a GdkDrawable*
index 21476132a7e417bb56aa5f9145528298b533b1a8..65ed4284910fbca938e9cadf43ca8bf458612499 100644 (file)
@@ -1,3 +1,10 @@
+Tue Sep 30 21:08:43 2003  Kristian Rietveld  <kris@gtk.org>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_init): actually show the child.
+
+       * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): ditto. (#123543,
+       Marco Pesenti Gritti).
+
 2003-09-30  Murray Cumming  <murrayc@usa.net>
  
        * gtk/gtkcellrenderer.h: The render vfunc takes a GdkDrawable*
index 21476132a7e417bb56aa5f9145528298b533b1a8..65ed4284910fbca938e9cadf43ca8bf458612499 100644 (file)
@@ -1,3 +1,10 @@
+Tue Sep 30 21:08:43 2003  Kristian Rietveld  <kris@gtk.org>
+
+       * gtk/gtkcombobox.c (gtk_combo_box_init): actually show the child.
+
+       * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): ditto. (#123543,
+       Marco Pesenti Gritti).
+
 2003-09-30  Murray Cumming  <murrayc@usa.net>
  
        * gtk/gtkcellrenderer.h: The render vfunc takes a GdkDrawable*
index 9bbf551155a649437b22dd03e2255a967c1dc1eb..5c4a01d380d1a56475d3e9af3f700bd4d7306211 100644 (file)
@@ -358,6 +358,7 @@ gtk_combo_box_init (GtkComboBox *combo_box)
 
   combo_box->priv->cell_view = gtk_cell_view_new ();
   gtk_container_add (GTK_CONTAINER (combo_box), combo_box->priv->cell_view);
+  gtk_widget_show (combo_box->priv->cell_view);
 
   combo_box->priv->measurer = gtk_cell_view_new ();
 
index 7d29916a3740e4ed319fb7730a2629efdad7ae40..7bba0e11b3531b18ade080955b1619e2a5a6f462 100644 (file)
@@ -152,6 +152,7 @@ gtk_combo_box_entry_new (GtkTreeModel *model,
   GTK_COMBO_BOX_ENTRY (ret)->priv->entry = gtk_entry_new ();
   gtk_container_add (GTK_CONTAINER (ret),
                      GTK_COMBO_BOX_ENTRY (ret)->priv->entry);
+  gtk_widget_show (GTK_COMBO_BOX_ENTRY (ret)->priv->entry);
 
   GTK_COMBO_BOX_ENTRY (ret)->priv->text_column = text_column;
   renderer = gtk_cell_renderer_text_new ();